home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
Tools
/
WWW
/
Charon
/
Rexx
/
ChangeProxy.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
2000-01-01
|
258 b
|
15 lines
/* Example: Changes proxy for all selected URLs */
NewProxy = "http://www.newproxy.net:8080/"
OPTIONS RESULTS
GETFIRSTURL SELECTED
ID=RESULT
DO WHILE ID ~= 0
SET 'ID ' || ID || ' PROXY ' || NewProxy
GETNEXTURL 'ID ' || ID || ' SELECTED'
ID=RESULT
END